home *** CD-ROM | disk | FTP | other *** search
/ Network CD 2 / Network CD - Volume 2.iso / programs / internet / tcp / server / named.lha / named.doc < prev    next >
Encoding:
Text File  |  1995-03-21  |  1.2 KB  |  35 lines

  1. Dumb Caching Name Server For AmiTCP
  2. -----------------------------------
  3. Here it is, a dumb name server for AmiTCP for simple LAN usage.  It
  4. processes name server queries out of the host table the machine it is
  5. running on or or by forwarding requests to your uplink name server (it does
  6. a simple gethostbyname() internally).  Succesfull requests are cached in
  7. the file "AmiTCP:db/nameserver.db" for up to 90 days.  It uses a hashing
  8. algorithm for fast lookup.
  9.  
  10. Installation:
  11.  
  12.  1. copy NameD to AmiTCP:Serv/
  13.  
  14.  2. add the following lines to AmiTCP:db/inetd.conf:
  15.  
  16.     # AmiTCP nameserver
  17.     nameserver dgram udp wait root amitcp:serv/named
  18.  
  19.  3. make sure resolv.conf of your nameserver host points
  20.     to your uplink's name server.
  21.  
  22.  4. change AmiTCP:db/resolv.conf of all your LAN machines
  23.     to query the host the name server is running on
  24.     (NAMESERVER=<ip-address of your nameserver host>).
  25.     No more need for local host tables, then.
  26.  
  27. Notes:
  28.  
  29. - You can delete the cache file at any time to recreate the data base
  30.   from scratch. Entries will time out after 90 days and will be reread
  31.   then.
  32.  
  33. - the included executable is compiled for 68030 CPUs. You will have to
  34.   recompile it if you want to run it on 68000 machines.
  35.